.centered {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.who-are-you-image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
    grid-gap: 20px;
    max-width: 1200px; /* Adjust this value as needed */
    width: 100%;
}

.who-are-you-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: transform 0.2s; /* Smooth transition for hover effect */
}

.who-are-you-grid-item:hover {
    transform: scale(1.05); /* Adjust the scale factor for desired zoom level */
}

.who-are-you-grid-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.who-are-you-overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 0px;
    background-color: rgba(0, 0, 0, 0.7); /* Background color with transparency */
    color: white;
    text-align: center;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

@media screen and (max-width: 1200px) {
    .who-are-you-image-grid {
        grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); /* Adjust for screens smaller than 1200px */
    }
}

@media screen and (max-width: 600px) {
    .who-are-you-image-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on small screens */
    }
}
